notebook: Fix rounding error in vertical alignment of arrow
authorWilliam Jon McCann <william.jon.mccann@gmail.com>
Wed, 7 Aug 2013 11:01:34 +0000 (13:01 +0200)
committerWilliam Jon McCann <william.jon.mccann@gmail.com>
Wed, 2 Oct 2013 14:51:16 +0000 (10:51 -0400)
https://bugzilla.gnome.org/show_bug.cgi?id=707920

gtk/gtknotebook.c

index aab78ee16c2dcd829a67914a7069cb54293796cc..b582a0aef52a9046226cfa791a4ceb7a138d4ae9 100644 (file)
@@ -27,6 +27,7 @@
 
 #include <stdio.h>
 #include <string.h>
+#include <math.h>
 
 #include "gtknotebook.h"
 
@@ -2713,7 +2714,7 @@ gtk_notebook_get_arrow_rect (GtkNotebook     *notebook,
               else
                 rectangle->x = event_window_pos.x + event_window_pos.width - 2 * rectangle->width;
             }
-          rectangle->y = event_window_pos.y + (event_window_pos.height - rectangle->height) / 2;
+          rectangle->y = floor ((gdouble)event_window_pos.y + (event_window_pos.height - rectangle->height) / 2.0 + 0.5);
           break;
         }
     }